Описание
The Reinforcement SlabRebars tool allows the user to create reinforcing bars inside a Slab Arch Structure object.
This tool is part of the Reinforcement Workbench, an external workbench that can be installed with the
Addon Manager.
A Example of Slab Reinforcement inside a Slab Arch Structure
Right view of the given Slab Reinforcement example
Front view of the given Slab Reinforcement example
Применение
1. Select any face of a previously created Slab
Arch Structure object. as shown in below image.
![](../File/Selected_face_for_Slab_Arch_Structure.png)
Selected face for Slab Arch Structure
2. Then select
Slab Reinforcement from the rebar tools.
3. A dialog box will pop-out on screen as shown below.
![](../File/Slab_Reinforcement_input_dialog_box.png)
Dialog Box for the Slab Reinforcement
4. Select the desired type of cover of reinforcement mesh (Top or Bottom).
5. Select the desired rebar type and other input data for rebars in parallel direction of selected face as show in below image.
![](../File/Bent_Shape_rebars_in_parallel_with_distribution_rebars_inputs_for_Slab_Reinforcement.png)
Dialog Box for Slab Reinforcement of the Rebars in parallel direction of selected face
6. Now click Next or select Cross Rebars in list view.
7. Now select desired data for input data for rabars in cross direction of selected face as show in below image.
![](../File/Bent_Shape_rebars_in_cross_direction_with_distribution_rebars.png)
Dialog Box for Slab Reinforcement of the Rebars in cross direction of selected face
8. Click OK or Apply or Finish to generate Slab reinforcement.
9. Click Cancel to exit the dialog box.
Properties
Properties for Rebars in Parallel Direction to selected face:
- ДанныеMesh Cover Along: It represent alignment of rebar mesh along top or bottom face of structure. It can have two values "Top" and "Bottom".
- ДанныеRebar Type: Type of rebar for parallel rebars for slab reinforcement. It can have four values 'StraightRebar', 'LShapeRebar', 'UShapeRebar', 'BentShapeRebar'.
- ДанныеFront Cover: The distance between parallel rebar and selected face.
- ДанныеLeft Cover: The distance between the left end of the parallel rebar to the left face of the structure.
- ДанныеRight Cover: The distance between the right end of the parallel rebar to right face of the structure.
- ДанныеBottom Cover: The distance between parallel rebars from the bottom face of the structure.
- ДанныеTop Cover: The distance between parallel rebars from the top face of the structure.
- ДанныеRear Cover: Rear cover for slab reinforcement of parallel rebars.
- ДанныеAnchor Length: It represents arm's length of bent shape parallel rebar when parallel rebar type is BentShapeRebar.
- ДанныеBent Angle: It represents angle for bent shape parallel rebar when parallel rebar type is BentShapeRebar.
- ДанныеRounding: A rounding value to be applied to the corners of the bars, expressed in times of diameter of parallel rebars.
- ДанныеDiameter: Diameter of parallel rebars
- ДанныеAmount: It contains count of parallel rebars.
- ДанныеSpacing: It contains spacing between parallel rebars.
Properties of Distribution Rebars for bent shape rebars in parallel Direction to selected face:
- ДанныеAmount: It contains count of Distribution Rebars for Bent shape rebars in parallel Direction.
- ДанныеSpacing: It contains spacing between Distribution Rebars for Bent shape rebars in parallel Direction.
Properties for Rebars in Cross Direction to selected face:
- ДанныеRebar Type: Type of rebar for cross rebars for slab reinforcement. It can have four values 'StraightRebar', 'LShapeRebar', 'UShapeRebar', 'BentShapeRebar'.
- ДанныеFront Cover: The distance between cross rebar and selected face.
- ДанныеLeft Cover: The distance between the left end of the cross rebar to the left face of the structure.
- ДанныеRight Cover: The distance between the right end of the cross rebar to right face of the structure.
- ДанныеBottom Cover: The distance between cross rebars from the bottom face of the structure.
- ДанныеTop Cover: The distance between cross rebars from the top face of the structure.
- ДанныеRear Cover: Rear cover for slab reinforcement of cross rebars.
- ДанныеAnchor Length: It represents arm's length of bent shape cross rebar when cross rebar type is BentShapeRebar.
- ДанныеBent Angle: It represents angle for bent shape cross rebar when cross rebar type is BentShapeRebar.
- ДанныеRounding: A rounding value to be applied to the corners of the bars, expressed in times of diameter of cross rebars.
- ДанныеDiameter: Diameter of cross rebars
- ДанныеAmount: It contains count of cross rebars.
- ДанныеSpacing: It contains spacing between cross rebars.
Properties of Distribution Rebars for bent shape rebars in cross Direction to selected face:
- ДанныеAmount: It contains count of Distribution Rebars for Bent shape rebars in cross Direction.
- ДанныеSpacing: It contains spacing between Distribution Rebars for Bent shape rebars in cross Direction.
Программирование
See also: Arch API, Reinforcement API and FreeCAD Scripting Basics.
The Reinforcement SlabRebars tool can be used from the Python console by using the following function:
Create Slab Reinforcement
from SlabReinforcement.SlabReinforcement import makeSlabReinforcement
SlabReinforcementGroup = makeSlabReinforcement(
parallel_rebar_type,
parallel_front_cover,
parallel_rear_cover,
parallel_left_cover,
parallel_right_cover,
parallel_top_cover,
parallel_bottom_cover,
parallel_diameter,
parallel_amount_spacing_check,
parallel_amount_spacing_value,
cross_rebar_type,
cross_front_cover,
cross_rear_cover,
cross_left_cover,
cross_right_cover,
cross_top_cover,
cross_bottom_cover,
cross_diameter,
cross_amount_spacing_check,
cross_amount_spacing_value,
cross_rounding = 2,
cross_bent_bar_length = 50,
cross_bent_bar_angle = 135,
cross_l_shape_hook_orintation = "Alternate",
cross_distribution_rebars_check = False,
cross_distribution_rebars_diameter = 8,
cross_distribution_rebars_amount_spacing_check = True,
cross_distribution_rebars_amount_spacing_value = 2,
parallel_rounding = 2,
parallel_bent_bar_length = 50,
parallel_bent_bar_angle = 135,
parallel_l_shape_hook_orintation = "Alternate",
parallel_distribution_rebars_check = False,
parallel_distribution_rebars_diameter = 8,
parallel_distribution_rebars_amount_spacing_check = True,
parallel_distribution_rebars_amount_spacing_value = 2,
mesh_cover_along = "Bottom",
structure = None,
facename = None,
)
- Creates a
SlabReinforcementGroup
object from the given structure
, which is a Slab Arch Structure, and facename
, which is a face of that structure.
- If no
structure
nor facename
are given, it will take the user selected face as input.
Properties for Rebars in Parallel Direction to selected face:
- Данныеparallel_rebar_type: Type of rebar for parallel rebars for slab reinforcement. It can have four values 'StraightRebar', 'LShapeRebar', 'UShapeRebar', 'BentShapeRebar'.
- Данныеparallel_front_cover: The distance between parallel rebar and selected face.
- Данныеparallel_rear_cover: Rear cover for slab reinforcement of parallel rebars.
- Данныеparallel_left_cover: The distance between the left end of the parallel rebar to the left face of the structure.
- Данныеparallel_right_cover: The distance between the right end of the parallel rebar to right face of the structure.
- Данныеparallel_top_cover: The distance between parallel rebars from the top face of the structure.
- Данныеparallel_bottom_cover: The distance between parallel rebars from the bottom face of the structure.
- Данныеparallel_diameter: Diameter of parallel rebars.
- Данныеparallel_amount_spacing_check: If is set to True, then value of parallel_amount_spacing_value is used as rebars count else parallel_amount_spacing_value's value is used as spacing in parallel rebars.
- Данныеparallel_amount_spacing_value: It contains count of rebars or spacing between parallel rebars based on value of amount_spacing_check.
- Данныеparallel_rounding: A rounding value to be applied to the corners of the bars, expressed in times the parallel_diameter.
- Данныеparallel_bent_bar_length: It represents arm's length of bent shape parallel rebar when parallel_rebar_type is BentShapeRebar
- Данныеparallel_bent_bar_angle: It represents angle for bent shape parallel rebar when parallel_rebar_type is BentShapeRebar
- Данныеparallel_l_shape_hook_orintation: It represents orintation of hook of parallel L-Shape rebar if parallel_rebar_type is LShapeRebar. It can have three values "Left", "Right","Alternate"
- Данныеparallel_distribution_rebars_check: If True add distribution rebars for parallel bent shape rebars. Default is False.
- Данныеparallel_distribution_rebars_diameter: Diameter of distribution rebars for parallel bent shape rebars.
- Данныеparallel_distribution_rebars_amount_spacing_check: If is set to True, then value of parallel_distribution_rebars_amount_spacing_value is used as rebars count else parallel_distribution_rebars_amount_spacing_value's value is used as spacing in parallel_distribution_rebars. Default is True.
- Данныеparallel_distribution_rebars_amount_spacing_value: It contains count or spacing between distribution rebars for one side of parallel bent shape rebars based on value of parallel_distribution_rebars_check. Default is 2.
Properties for Rebars in Cross Direction to selected face:
- Данныеcross_rebar_type: Type of rebar for cross rebars for slab reinforcement. It can have four values 'StraightRebar', 'LShapeRebar', 'UShapeRebar', 'BentShapeRebar'.
- Данныеcross_front_cover: The distance between cross rebar and cross_face (face perpendicular to selected face).
- Данныеcross_rear_cover: Rear cover for slab reinforcement of cross rebars.
- Данныеcross_left_cover: The distance between the left end of the cross rebar to the left face of the structure.
- Данныеcross_right_cover: The distance between the right end of the rebar to right face of the structure relative to cross_face.
- Данныеcross_top_cover: The distance between cross rebar from the top face of the structure.
- Данныеcross_bottom_cover: The distance between cross rebar from the bottom face of the structure.
- Данныеcross_diameter: Diameter of cross rebars.
- Данныеcross_amount_spacing_check: If is set to True, then value of cross_amount_spacing_value is used as rebars count else cross_amount_spacing_value's value is used as spacing in rebars.
- Данныеcross_amount_spacing_value: It contains count of rebars or spacing between rebars based on value of cross_amount_spacing_check.
- Данныеcross_rounding: A rounding value to be applied to the corners of the bars, expressed in times the cross_diameter.
- Данныеcross_bent_bar_length: It represents arm's length of bent shape cross rebar when cross_rebar_type is BentShapeRebar
- Данныеcross_bent_bar_angle: It represents angle for bent shape cross rebar when cross_rebar_type is BentShapeRebar
- Данныеcross_l_shape_hook_orintation: It represents orintation of hook of cross L-Shape rebar if cross_rebar_type is LShapeRebar. It can have three values "Left", "Right", "Alternate"
- Данныеcross_distribution_rebars_check: If True add distribution rebars for cross bent shape rebars. Default is False.
- Данныеcross_distribution_rebars_diameter: Diameter for distribution rebars for cross bent shape rebars.
- Данныеcross_distribution_rebars_amount_spacing_check: If is set to True, then value of cross_distribution_rebars_amount_spacing_value is used as rebars count else cross_distribution_rebars_amount_spacing_value's value is used as spacing in cross_distribution_rebars. Default is True.
- Данныеcross_distribution_rebars_amount_spacing_value: It contains count or spacing between distribution rebars for one side of cross bent shape rebars based on value of cross_distribution_rebars_check. Default is 2.
Common Properties for Parallel and Cross Rebars:
- Данныеmesh_cover_along: It can have two values "Top" and "Bottom". It represent alignment of rebar mesh along top or bottom face of structure.
- Данныеstructure: Arch structure object. Default is None
- Данныеfacename: selected face of structure. Default is None
Edition of Slab Reinforcement
You can change the properties of the Slab Reinforcement with the following function:
from SlabReinforcement.SlabReinforcement import editSlabReinforcement
slabReinforcementGroup = editSlabReinforcement(
slabReinforcementGroup,
parallel_rebar_type,
parallel_front_cover,
parallel_rear_cover,
parallel_left_cover,
parallel_right_cover,
parallel_top_cover,
parallel_bottom_cover,
parallel_diameter,
parallel_amount_spacing_check,
parallel_amount_spacing_value,
cross_rebar_type,
cross_front_cover,
cross_rear_cover,
cross_left_cover,
cross_right_cover,
cross_top_cover,
cross_bottom_cover,
cross_diameter,
cross_amount_spacing_check,
cross_amount_spacing_value,
cross_rounding = 2,
cross_bent_bar_length = 50,
cross_bent_bar_angle = 135,
cross_l_shape_hook_orintation = "Alternate",
cross_distribution_rebars_check = False,
cross_distribution_rebars_diameter = 8,
cross_distribution_rebars_amount_spacing_check = True,
cross_distribution_rebars_amount_spacing_value = 2,
parallel_rounding = 2,
parallel_bent_bar_length = 50,
parallel_bent_bar_angle = 135,
parallel_l_shape_hook_orintation = "Alternate",
parallel_distribution_rebars_check = False,
parallel_distribution_rebars_diameter = 8,
parallel_distribution_rebars_amount_spacing_check = True,
parallel_distribution_rebars_amount_spacing_value = 2,
mesh_cover_along: str = "Bottom",
structure = None,
facename = None,
)
slabReinforcementGroup
is a previously created Slab Reinforcement
group object.
- The other parameters are the same as required by the
makeSlabReinforcement()
function.
Examples for Slab Reinforcement
BIM
- 2D drafting: Sketch, Line, Polyline, Circle, Arc, Arc by 3 points, Fillet, Ellipse, Polygon, Rectangle, B-spline, Bézier curve, Cubic Bézier curve, Point
- 3D/BIM: Project, Site, Building, Level, Space, Wall, Curtain Wall, Column, Beam, Slab, Door, Window, Pipe, Pipe Connector, Stairs, Roof, Panel, Frame, Fence, Truss, Equipment
- Reinforcement tools: Custom Rebar, Straight Rebar, U-Shape Rebar, L-Shape Rebar, Stirrup, Bent-Shape Rebar, Helical Rebar, Column Reinforcement, Beam Reinforcement, Slab Reinforcement, Footing Reinforcement
- Generic 3D tools: Profile, Box, Shape builder..., Facebinder, Objects library, Component, External reference
- Annotation: Text, Shape from text, Aligned dimension, Horizontal dimension, Vertical dimension, Leader, Label, Axis, Axes System, Grid, Section Plane, Hatch, Page, View, Shape-based view
- Snapping: Snap lock, Snap endpoint, Snap midpoint, Snap center, Snap angle, Snap intersection, Snap perpendicular, Snap extension, Snap parallel, Snap special, Snap near, Snap ortho, Snap grid, Snap working plane, Snap dimensions, Toggle grid, Working Plane Top, Working Plane Front, Working Plane Side
- Modify: Move, Copy, Rotate, Clone, Create simple copy, Make compound, Offset, 2D Offset..., Trimex, Join, Split, Scale, Stretch, Draft to sketch, Upgrade, Downgrade, Add component, Remove component, Array, Path array, Polar array, Point array, Cut with plane, Mirror, Extrude..., Difference, Union, Intersection
- Manage: BIM Setup..., Views manager, Manage project..., Manage doors and windows..., Manage IFC elements..., Manage IFC quantities..., Manage IFC properties..., Manage classification..., Manage layers..., Material, Schedule, Preflight checks..., Annotation styles...
- Utils: Toggle bottom panels, Move to Trash, Working Plane View, Select group, Set slope, Create working plane proxy, Add to construction group, Split Mesh, Mesh to Shape, Select non-manifold meshes, Remove Shape from Arch, Close Holes, Merge Walls, Check, Toggle IFC Brep flag, Toggle subcomponents, Survey, IFC Diff, IFC explorer, Create IFC spreadsheet..., Image plane, Unclone, Rewire, Glue, Reextrude
- Panel tools: Panel, Panel Cut, Panel Sheet, Nest
- Structure tools: Structure, Structural System, Multiple Structures
- IFC tools: IFC Diff..., IFC Expand, Make IFC project, IfcOpenShell update
- Nudge: Nudge Switch, Nudge Up, Nudge Down, Nudge Left, Nudge Right, Nudge Rotate Left, Nudge Rotate Right, Nudge Extend, Nudge Shrink
Документация пользователя
- Начинающим
- Установка: Загрузка, Windows, Linux, Mac,
Дополнительных компонентов, Docker, AppImage, Ubuntu Snap
- Базовая: О FreeCAD, Интерфейс, Навигация мыши, Методы выделения, Имя объекта, Настройки, Верстаки, Структура документа, Свойства, Помоги FreeCAD, Пожертвования
- Помощь: Учебники, Видео учебники
- Верстаки: Std Base, Arch, Assembly, CAM, Draft, FEM, Inspection, Mesh, OpenSCAD, Part, PartDesign, Points, Reverse Engineering, Robot, Sketcher, Spreadsheet, Surface, TechDraw, Test Framework